home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / comm1 / intsdkss.lha / examples / timed / smakefile < prev    next >
Makefile  |  1996-04-09  |  178b  |  16 lines

  1. #
  2. # timed
  3. #
  4.  
  5. OBJS = timed.o
  6.  
  7. .c.o:
  8.     @echo "Compiling $*.c..."
  9.     @sc $*.c
  10.  
  11. timed:    $(OBJS)
  12.     @slink $(OBJS) TO $@ LIB lib:sc.lib SC SD ND NOICONS
  13.  
  14. clean:
  15.     -@delete \#?.o timed quiet
  16.